28-Print 10 stars Vertical -default.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

for i in range(10):
    print("*")
    
    
                    

Try it yourself